home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 4 / FM Towns Free Software Collection 4 - Disc 1.iso / t_os / magl / wild.h < prev   
C/C++ Source or Header  |  1991-10-18  |  396b  |  23 lines

  1. /* Wild Card Library */
  2.  
  3. #ifndef FALSE
  4. #define FALSE    0
  5. #define TRUE    -1
  6. #endif
  7.  
  8. #ifndef NULL
  9. #define NULL    0
  10. #endif
  11.  
  12. typedef struct {
  13.     char    dummy[22];
  14.     short    time,date;
  15.     int        size;
  16.     char    fname[13];
  17.     } DTA;
  18.  
  19. extern DTA    *search(char *path,int mode,char *fname);
  20. extern DTA    *next(char *path,int mode,char *fname);
  21. extern char    *getext(char *arg);
  22. extern char    *getname(char *arg);
  23.